home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 01543_Script_1543 < prev    next >
Text File  |  1995-05-21  |  683b  |  36 lines

  1. on mouseDown
  2.   global whichShot, shotTemp
  3.   if whichShot > 2 then 
  4.     exit
  5.   else
  6.     put the movieTime of sprite 48 into shotTemp
  7.     puppetsound "camclick.aif"
  8.     
  9.     --put "SnapBtn" into f
  10.     --put "SnapBtnHL" into fHL
  11.     --hiliter 7, f, fHL
  12.   end if
  13. end
  14.  
  15.  
  16.  
  17. on mouseUp
  18.   global gTheDay, snap1, snap2, whichShot, shotTemp
  19.   if whichShot > 2 then 
  20.     exit
  21.   else
  22.     if whichShot = 1 then
  23.       put shotTemp into snap1
  24.       set whichShot = 2
  25.       puppetsound 0
  26.       go frame "Fu1"
  27.     else
  28.       put shotTemp into snap2
  29.       set whichShot = 3
  30.        puppetsound 0
  31.       go frame "Fu2"
  32.     end if
  33.   end if
  34.   startTimer
  35.   puppetsound 0
  36. end